.login-form {
  font-family: "SF Pro", sans-serif;
}

.input-box {
  width: 100%;
  border: 0px;
  outline: 1px;
  padding: 0px;
  background-color: rgba(255,255,255,0);
  font-family: "SF Pro", sans-serif;
  height: 100px;
  font-size: 50px;
  text-align: center;
  font-weight: bold;
}

.submit-button {
  color: white;
  background-color: #657F60;
  font-family: "SF Pro", sans-serif;
  font-size: 42px;
  width: 100%;
  height: 100px;
  font-weight: 700;
  border-radius: 6px;
  Border: none;
  cursor: pointer;
  box-shadow: none;
  text-shadow: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease-in-out, color 0.2s ease;
}

.submit-button:hover {
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  color: #323232;
  transform: scale(1.005);
}
